feat(C9): add agent persisted state integrity control (9.4.5)#628
Open
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Open
feat(C9): add agent persisted state integrity control (9.4.5)#628RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
RicoKomenda wants to merge 1 commit intoOWASP:mainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds 9.4.5 to C9.4 (Agent and Orchestrator Identity, Signing, and Tamper-Evident Audit) to close a gap where no control currently protects agent state stored between invocations from tampering.
New control:
Level: 2
Why this is needed
Long-running agents commonly persist task state to external storage (Redis, databases, object stores) between invocations. An attacker with write access to that storage, or an attacker who compromises a tool that has write access, can modify the agent's persisted goals, memory, or partial results without any in-flight detection. This is a persistence and privilege escalation vector documented in MITRE ATLAS (AML.T0051 - LLM Plugin Compromise) and in the OWASP Top 10 for Agentic Applications 2026.
Existing C9.4 controls address in-flight action signing (9.4.2) and audit log tamper-evidence (9.4.3), but neither covers stored state between turns. This control plugs that gap with a verifiable requirement: MAC or signature over persisted state, verified before resumption.
Level 2 is appropriate: the threat is real for any multi-turn or long-running agent, but verification requires an integrity mechanism on the state store rather than just infrastructure configuration.
Changes
1.0/en/0x10-C09-Orchestration-and-Agentic-Action.md: add 9.4.51.0/en/0x93-Appendix-D_AI_Security_Controls_Inventory.md: add entry to AD.6